home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / util / moni / Scout-src.lha / netinclude / proto / socket.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-02-13  |  739 b   |  34 lines

  1. #ifndef PROTO_SOCKET_H
  2. #define PROTO_SOCKET_H \
  3.        "$Id: socket.h,v 1.1.1.1 2001/11/26 22:21:18 tboeckel Exp $"
  4. /*
  5.  *    SAS C Prototypes for bsdsocket.library
  6.  *
  7.  *      Copyright © 1994 AmiTCP/IP Group,
  8.  *                       Network Solutions Development, Inc.
  9.  *                       All rights reserved.
  10.  */
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15. #ifndef SYS_TYPES_H
  16. #include <sys/types.h>
  17. #endif
  18.  
  19. #ifndef __NOLIBBASE__       
  20. extern struct Library *SocketBase;
  21. #endif
  22.  
  23. #include <clib/socket_protos.h>
  24. #if __SASC
  25. #include <pragmas/socket_pragmas.h>
  26. #elif __GNUC__
  27. #include <inline/socket.h>
  28. #endif
  29.  
  30. #ifdef _OPTINLINE        /* for SAS C 6.3 and later */
  31. #include <clib/socket_inlines.h>
  32. #endif
  33. #endif /* PROTO_SOCKET_H */
  34.